import { Button, useTheme } from '@aws-amplify/ui-react';
// use any CSS value
export const ShadowStylePropExample = () => {
return (
);
};
// use a design token from the theme object
export const ShadowThemeTokenExample = () => {
const { tokens } = useTheme();
return (
);
};
// use a design token name
export const ShadowTokenNameExample = () => {
return ;
};